home *** CD-ROM | disk | FTP | other *** search
Makefile | 1993-11-27 | 403 b | 24 lines |
- common = ../libtxi
- LIBS = -L$(common) -ltxi
- LOADLIBES = $(LIBS)
-
- CFLAGS = -O2 -I$(common)
- LDFLAGS = -s
-
- all: texindex.exe
-
- .c.o:
- gcc -c -I. -I$(common) $(CFLAGS) $<
-
- texindex.exe : texindex
- coff2exe texindex
-
- texindex: texindex.o $(common)/libtxi.a
- gcc $(LDFLAGS) -o texindex texindex.o $(LOADLIBES)
-
- texindex.o: texindex.c $(common)/getopt.h
-
- clean :
- -del *.o
- -del texindex
-